home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / examples / dragdrop / dropsite.h.z / dropsite.h
C/C++ Source or Header  |  2002-04-08  |  1KB  |  57 lines

  1. /****************************************************************************
  2. ** $Id:  qt/dropsite.h   3.0.3   edited Oct 12 12:18 $
  3. **
  4. ** Drop site example implementation
  5. **
  6. ** Created : 979899
  7. **
  8. ** Copyright (C) 1997 by Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of an example program for Qt.  This example
  11. ** program may be used, distributed and modified without limitation.
  12. **
  13. *****************************************************************************/
  14.  
  15. #ifndef DROPSITE_H
  16. #define DROPSITE_H
  17.  
  18. #include <qlabel.h>
  19. #include <qmovie.h>
  20. #include "qdropsite.h"
  21.  
  22. class QDragObject;
  23.  
  24. class DropSite: public QLabel
  25. {
  26.     Q_OBJECT
  27. public:
  28.     DropSite( QWidget * parent = 0, const char * name = 0 );
  29.     ~DropSite();
  30.  
  31. signals:
  32.     void message( const QString& );
  33.  
  34. protected:
  35.     void dragEnterEvent( QDragEnterEvent * );
  36.     void dragMoveEvent( QDragMoveEvent * );
  37.     void dragLeaveEvent( QDragLeaveEvent * );
  38.     void dropEvent( QDropEvent * );
  39.     void backgroundColorChange( const QColor& );
  40.  
  41.     // this is a normal even
  42.     void mousePressEvent( QMouseEvent * );
  43. };
  44.  
  45. class DragMoviePlayer : public QObject {
  46.     Q_OBJECT
  47.     QDragObject* dobj;
  48.     QMovie movie;
  49. public:
  50.     DragMoviePlayer(QDragObject*);
  51. private slots:
  52.     void updatePixmap( const QRect& );
  53. };
  54.  
  55.  
  56. #endif
  57.